    :root{
        --black:#070707;
        --panel:#111;
        --red:#c94632;
        --orange:#ef7a23;
        --yellow:#f7c73d;
        --cream:#f6e7cf;
        --muted:#bcae9a
    }

    *{
        box-sizing:border-box
    }

    body{
        margin:0;
        background:radial-gradient(circle at top right,rgba(201,70,50,.28),transparent 35%),var(--black);
        color:var(--cream);
        font-family:'Outfit',Arial,Helvetica,sans-serif
    } 
    
    a{
        color:inherit;
        text-decoration:none
    }

    header{
        position:sticky;
        top:0;z-index:3;
        background:rgba(7,7,7,.86);
        backdrop-filter:blur(12px);
        border-bottom:1px solid rgba(239,122,35,.25)
    }

    nav{
        max-width:1180px;margin:auto;
        padding:16px 22px;display:flex;
        align-items:center;
        justify-content:space-between
    }
    .brand{
        display:flex;
        align-items:center;
        gap:12px;
        font-weight:900;
        letter-spacing:2px
    }
    
    .brand img{
        width:60px;
        height:auto;
        border-radius:50%
    }

    
    .navlinks a {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .navlinks{
        /* display:flex;
        gap:18px;
        color:var(--muted);
        font-size:14px */
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .navlinks a:hover {
        color: #d91e18; /* BOMJA red */
        transform: translateY(-2px);
    }
    
    .btn{
        display:inline-block;
        background:linear-gradient(90deg,var(--red),var(--orange));
        color:#090909;
        padding:14px 22px;
        border-radius:999px;
        font-weight:900;
        text-transform:uppercase;
        letter-spacing:.8px;
        box-shadow:0 0 28px rgba(201,70,50,.25)
    }
    
    .btn.secondary{
        background:transparent;
        color:var(--cream);
        border:1px solid rgba(246,231,207,.28);
        box-shadow:none
    }

    .admin-btn {
        background:rgba(255,255,255,.08);
        color:var(--cream);
        border:1px solid rgba(239,122,35,.45);
        box-shadow:0 0 18px rgba(239,122,35,.18);
        font-weight:700;
        transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
    }

    .admin-btn:hover,
    .admin-btn:focus {
        background:rgba(239,122,35,.16);
        box-shadow:0 0 24px rgba(239,122,35,.35);
        transform:translateY(-1px);
    }

    .hero{
        max-width:1180px;
        margin:auto;
        padding:86px 22px 58px;
        display:grid;grid-template-columns:1.1fr .9fr;
        gap:38px;
        align-items:center
    }
    
    .kicker{
        color:var(--orange);
        font-weight:900;
        text-transform:uppercase;
        letter-spacing:3px
    }
    
    .hero h1{
        font-size:clamp(48px,8vw,104px);
        line-height:.88;
        margin:18px 0;
        text-transform:uppercase
    }
    
    .hero p{
        font-size:20px;
        line-height:1.55;
        color:var(--muted);
        max-width:610px
    }
    
    .hero-card{
        background:linear-gradient(180deg,rgba(201,70,50,.22),rgba(17,17,17,.9));
        border:1px solid rgba(239,122,35,.4);
        border-radius:34px;
        padding:28px;
        min-height:460px;
        position:relative;
        overflow:hidden
    }


.socials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(340px, 420px));
    gap: 32px;
    justify-content: center;
    align-items: start;
    margin-top: 35px;
}

.instagram-embed-card,
.tiktok-embed-card {
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(239, 122, 35, 0.35);
    border-radius: 26px;
    padding: 18px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.instagram-embed-card blockquote,
.tiktok-embed-card blockquote {
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.upcoming-events {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

.event {
    width: 40%;
    flex-shrink: 0;
}

.event-link {
    display: block;
    width: 100%;
}

.event-link img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 850px) {
    .socials-grid {
        grid-template-columns: 1fr;
    }

    .reel__container,
    .video-card {
        margin: 0 auto;
    }
}

    .hero-card:before{
        content:"";
        position:absolute;
        inset:25px;border:2px solid rgba(239,122,35,.45);
        border-radius:50%;
        filter:blur(.2px)
    }
    
    .hero-card img{
        width:180px;
        display:block;
        margin:36px auto 24px
    }
    
    
    .event h2{
        font-size:36px;
        margin:0 0 8px
    }
    
    .event p{
        margin:6px 0;color:var(--muted)
    }

    section{
        max-width:1180px;
        margin:auto;
        padding:54px 22px
    }
    
    .section-title{
        font-size:42px;
        margin:0 0 22px;
        text-transform:uppercase
    }
    
    .grid{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:18px
    }
    
    .card{
        background:rgba(17,17,17,.88);
        border:1px solid rgba(246,231,207,.12);
        border-radius:24px;
        padding:24px
    }
    
    .card h3{
        color:var(--orange);
        font-size:24px;
        margin-top:0
    }
    
    .flyer{
        aspect-ratio:4/5;
        background:linear-gradient(135deg,#2a0b08,#111);
        border-radius:22px;
        border:1px dashed rgba(247,199,61,.4);
        display:flex;
        align-items:center;
        justify-content:center;
        color:var(--muted);
        text-align:center;
        padding:20px
    }
    
    .numbers{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:14px
    }
    
    .num{
        padding:28px;
        background:#101010;
        border-left:4px solid var(--red);
        border-radius:18px
    }
    
    .num strong{
        font-size:44px;
        display:block;
        color:var(--yellow)
    }
    
    form{
        display:grid;
        grid-template-columns:1fr 1fr auto;
        gap:12px
    }
    
    .input{
        background:#090909;
        border:1px solid rgba(246,231,207,.25);
        color:var(--cream);
        padding:15px 16px;
        border-radius:12px;
        font-size:16px
    }
    
    footer{
        padding:40px 22px;
        text-align:center;
        color:var(--muted);
        border-top:1px solid rgba(246,231,207,.08)
    }

    @media(max-width:800px){
            .hero,
            .grid,

            .numbers{
                grid-template-columns:1fr
            }
            
            .navlinks{
                display:none
            }
            
            form{
                grid-template-columns:1fr
            }

            .hero{
                padding-top:48px
            }
            
            .hero-card{
                min-height:auto
            }
            
            .hero h1{
                font-size:56px
            }
        }


.slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slides {
    display: none;
    width: 100%;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.overlay h1 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.3rem;
}

.fade {
    animation: fade 1.5s;
}

@keyframes fade {
    from {opacity: .4;}
    to {opacity: 1;}
}



.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 480px));
    gap: 32px;
    justify-content: center;
}

.video-card {
    position: relative;

    background: linear-gradient(
        180deg,
        rgba(201,70,50,.22),
        rgba(17,17,17,.95)
    );

    border: 1px solid rgba(239,122,35,.4);

    border-radius: 28px;

    overflow: hidden;

    width: 100%;
    max-width: 480px;

    box-shadow: 0 25px 50px rgba(0,0,0,.35);

    cursor: pointer;
}

.tiktok-logo {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 42px;
    height: auto;

    z-index: 10;

    opacity: .95;

    filter: drop-shadow(
        0 0 10px rgba(0,0,0,.35)
    );
}

.video-card:hover {
    transform: translateY(-6px);
}

.video-thumbnail {
    position: relative;
    height: 520px;
    background: #000;
    overflow: hidden;
}

.tiktok-video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(7,7,7,.75);
    color: var(--cream);
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.video-info {
    padding: 16px;
    background: #111;
}

.video-creator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.creator-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange);
}

.creator-name {
    color: var(--cream);
    font-size: 14px;
    font-weight: 800;
}

.video-title {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.35;
    margin: 0 0 12px;
}

.video-stats {
    display: flex;
    gap: 12px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 850px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        max-width: 360px;
        margin: auto;
    }
}


/* Instagram Reel Card */

.reel__container {
    position: relative;
    height: 640px;
    width: 360px;
    border-radius: 28px;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #000;
    border: 1px solid rgba(239,122,35,.4);
    box-shadow: 0 25px 50px rgba(0,0,0,.35);
}

.reel__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.reel__container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,.05) 40%,
        rgba(0,0,0,.75) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.reel__title,
.reel__content {
    position: relative;
    z-index: 2;
    color: white;
}

.reel-button {
    background: rgba(0,0,0,.35);
    border: 1px solid white;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 12px;
    color: white;
}

.reel__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reel__back-button {
    display: flex;
    align-items: center;
}

.reel__back-button p {
    font-weight: 800;
    font-size: 16px;
}

.icon-tabler-arrow-narrow-left {
    margin-right: 0.5rem;
}

.reel__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.reel__user {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reel__avatar {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 0.5rem;
    border: 2px solid var(--orange);
}

.reel__username {
    font-weight: 800;
    margin-right: 0.5rem;
}

.reel__caption {
    margin-bottom: 0.5rem;
    max-width: 245px;
    line-height: 1.35;
}

.reel__audio {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--cream);
}

.reel__options {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 225px;
    align-items: center;
}

.reel__options svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}

.icon-tabler-message-circle {
    transform: scaleX(-1);
}

.reel__audio-cover {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border: 3px solid #ffffff;
    border-radius: 8px;
}

.reel__likes {
    font-weight: 800;
    margin-top: -1rem;
    font-size: 11px;
}

/* ==============================
   MOBILE-READY ENHANCEMENTS
   ============================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

img,
video {
    max-width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(246, 231, 207, 0.24);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.9);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--cream);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.instagram-logo {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.upcoming-events img {
    border-radius: 22px;
    border: 1px solid rgba(239, 122, 35, 0.28);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.btn,
.navlinks a,
.mobile-menu a {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 900px) {
    header {
        z-index: 100;
    }

    nav {
        padding: 11px 16px;
        gap: 10px;
    }

    .brand {
        font-size: 1rem;
        gap: 9px;
    }

    .brand img {
        width: 48px;
    }

    .navlinks,
    .nav-ticket {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: grid;
        gap: 4px;
        padding: 14px 16px 20px;
        background: rgba(7, 7, 7, 0.97);
        border-bottom: 1px solid rgba(239, 122, 35, 0.28);
        backdrop-filter: blur(14px);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .mobile-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu a:not(.btn) {
        padding: 13px 4px;
        border-bottom: 1px solid rgba(246, 231, 207, 0.08);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-menu .btn {
        margin-top: 10px;
        text-align: center;
    }

    section {
        padding: 42px 16px;
    }

    .slideshow {
        height: min(68vh, 540px);
    }

    .slides img {
        object-position: center;
    }

    .slideshow::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.7));
        pointer-events: none;
    }

    .overlay {
        width: calc(100% - 32px);
        z-index: 2;
    }

    .overlay h1 {
        font-size: clamp(3.25rem, 18vw, 5rem);
        line-height: .9;
        margin: 0 0 10px;
    }

    .overlay p {
        font-size: 1.05rem;
        margin: 0;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1;
    }

    .upcoming-events {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: min(82vw, 360px);

        overflow-x: auto;
        gap: 16px;

        scroll-snap-type: x mandatory;

        padding: 2px 16px 16px;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .upcoming-events::-webkit-scrollbar {
        display: none;
    }

    .event {
        width: 100%;
        min-width: 0;
        scroll-snap-align: start;
    }

    .event-link {
        display: block;
        width: 100%;
    }

    .event-link img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 0;
    }
 

    .hero {
        padding: 48px 16px 38px;
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 13vw, 4.3rem);
        line-height: .92;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero p:last-child {
        display: grid;
        gap: 10px;
    }

    .hero .btn {
        width: 100%;
        text-align: center;
    }

    .hero-card {
        padding: 18px;
        border-radius: 26px;
    }

    .hero-card::before {
        inset: 17px;
    }

    .hero-card img {
        width: 125px;
        margin-top: 24px;
    }

    .event {
        padding: 18px;
    }

    .event h2 {
        font-size: 1.8rem;
    }

    .grid {
        gap: 14px;
    }

    .card {
        padding: 20px;
    }

    .socials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .video-card,
    .reel__container {
        width: min(100%, 380px);
        max-width: 380px;
        margin-inline: auto;
    }

    .video-thumbnail {
        height: 470px;
    }

    .reel__container {
        height: 590px;
    }

    form {
        gap: 10px;
    }

    .input,
    form .btn {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 600px) {

    .upcoming-events {
        grid-auto-columns: 82vw;
        gap: 12px;
        padding-left: 16px;
        padding-right: 16px;
        scroll-padding-left: 16px;
    }

}

@media (max-width: 400px) {

    .upcoming-events {
        grid-auto-columns: 86vw;
        gap: 10px;
        padding-left: 12px;
        padding-right: 12px;
    }

}

@media (max-width: 480px) {
    .slideshow {
        height: 62vh;
        min-height: 430px;
    }

    .video-card,
    .reel__container {
        width: 100%;
    }

    .video-thumbnail {
        height: 430px;
    }

    .reel__container {
        height: 560px;
    }

    .video-stats {
        justify-content: space-between;
        gap: 6px;
    }

    .reel__caption {
        max-width: 205px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
